Filter hook 'taxonomy_labels_{$taxonomy}'
in WP Core File wp-includes/taxonomy.php at line 749
Description
Filters the labels of a specific taxonomy. The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. Possible hook names include: - `taxonomy_labels_category` - `taxonomy_labels_post_tag`
Occurrences
Filename |
Line Number |
wp-includes/taxonomy.php |
749 |
Parameters
Type |
Name |
Description |
object |
$labels |
Object with labels for the taxonomy as member variables. |
PHP Doc
/**
* Filters the labels of a specific taxonomy.
*
* The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
*
* Possible hook names include:
*
* - `taxonomy_labels_category`
* - `taxonomy_labels_post_tag`
*
* @since 4.4.0
*
* @see get_taxonomy_labels() for the full list of taxonomy labels.
*
* @param object $labels Object with labels for the taxonomy as member variables.
*/